home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Tools
/
Languages
/
GCC 1.37.1r14
/
usr
/
lib
/
mac
/
getpid.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-12-08
|
169 b
|
13 lines
|
[
TEXT/JRRK
]
#include <Processes.h>
#include <sys/types.h>
pid_t getpid(void)
{
ProcessSerialNumber mysn;
mysleep(1);
GetCurrentProcess(&mysn);
return mysn.lowLongOfPSN;
}